home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / preloaders / IPreloaderDisplay.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  999 b   |  38 lines

  1. package mx.preloaders
  2. {
  3.    import flash.display.Sprite;
  4.    import flash.events.IEventDispatcher;
  5.    
  6.    public interface IPreloaderDisplay extends IEventDispatcher
  7.    {
  8.       function set backgroundAlpha(param1:Number) : void;
  9.       
  10.       function get stageHeight() : Number;
  11.       
  12.       function get stageWidth() : Number;
  13.       
  14.       function set backgroundColor(param1:uint) : void;
  15.       
  16.       function set preloader(param1:Sprite) : void;
  17.       
  18.       function get backgroundImage() : Object;
  19.       
  20.       function get backgroundSize() : String;
  21.       
  22.       function get backgroundAlpha() : Number;
  23.       
  24.       function set stageHeight(param1:Number) : void;
  25.       
  26.       function get backgroundColor() : uint;
  27.       
  28.       function set stageWidth(param1:Number) : void;
  29.       
  30.       function set backgroundImage(param1:Object) : void;
  31.       
  32.       function set backgroundSize(param1:String) : void;
  33.       
  34.       function initialize() : void;
  35.    }
  36. }
  37.  
  38.